home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / chmod.man,v < prev    next >
Text File  |  1990-12-13  |  4KB  |  201 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @@;
  7.  
  8.  
  9. 1.3
  10. date     90.12.13.17.07.58;  author shirriff;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     89.10.03.17.21.42;  author shirriff;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     89.10.03.17.19.30;  author shirriff;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @initial revision.
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @Added fchmod to man page.
  33. @
  34. text
  35. @.\" Copyright (c) 1980 Regents of the University of California.
  36. .\" All rights reserved.  The Berkeley software License Agreement
  37. .\" specifies the terms and conditions for redistribution.
  38. .\"
  39. .\"    @@(#)chmod.2    6.5 (Berkeley) 5/13/86
  40. .\"
  41. .TH CHMOD 2 "May 13, 1986"
  42. .UC 4
  43. .SH NAME
  44. chmod, fchmod \- change mode of file
  45. .SH SYNOPSIS
  46. .nf
  47. .ft B
  48. chmod(path, mode)
  49. char *path;
  50. int mode;
  51. .PP
  52. .ft B
  53. fchmod(fd, mode)
  54. int fd, mode;
  55. .fi
  56. .SH DESCRIPTION
  57. The file whose name
  58. is given by \fIpath\fP
  59. or referenced by the descriptor
  60. .I fd
  61. has its mode changed to
  62. .IR mode .
  63. Modes are constructed by
  64. .IR or 'ing
  65. together some
  66. combination of the following, defined in
  67. .IR <sys/stat.h> :
  68. .PP
  69. .RS
  70. .nf
  71. .ta \w'S_IWRITE\ \ 'u +\w'04000\ \ \ 'u
  72. S_ISUID    04000    set user ID on execution
  73. S_ISGID    02000    set group ID on execution
  74. S_ISVTX    01000    `sticky bit' (see below)
  75. S_IREAD    00400    read by owner
  76. S_IWRITE    00200    write by owner
  77. S_IEXEC    00100    execute (search on directory) by owner
  78.     00070    read, write, execute (search) by group
  79.     00007    read, write, execute (search) by others
  80. .fi
  81. .RE
  82. .PP
  83. If an executable file is set up for sharing (this is the default)
  84. then mode S_ISVTX (the `sticky bit') prevents the system from
  85. abandoning the swap-space image of the program-text portion
  86. of the file when its last user terminates.
  87. Ability to set this bit on executable files is restricted to the super-user.
  88. .PP
  89. If mode S_ISVTX (the `sticky bit') is set on a directory,
  90. an unprivileged user may not delete or rename
  91. files of other users in that directory.
  92. For more details of the properties of the sticky bit, see
  93. .IR sticky (8).
  94. .PP
  95. Only the owner of a file (or the super-user) may change the mode.
  96. .PP
  97. Writing or changing the owner of a file
  98. turns off the set-user-id and set-group-id bits
  99. unless the user is the super-user.
  100. This makes the system somewhat more secure
  101. by protecting set-user-id (set-group-id) files
  102. from remaining set-user-id (set-group-id) if they are modified,
  103. at the expense of a degree of compatibility.
  104. .SH "RETURN VALUE
  105. Upon successful completion, a value of 0 is returned.
  106. Otherwise, a value of \-1 is returned and
  107. .I errno
  108. is set to indicate the error.
  109. .SH "ERRORS
  110. .I Chmod
  111. will fail and the file mode will be unchanged if:
  112. .TP 15
  113. [ENOTDIR]
  114. A component of the path prefix is not a directory.
  115. .TP 15
  116. [EINVAL]
  117. The pathname contains a character with the high-order bit set.
  118. .TP 15
  119. [ENAMETOOLONG]
  120. A component of a pathname exceeded 255 characters,
  121. or an entire path name exceeded 1023 characters.
  122. .TP 15
  123. [ENOENT]
  124. The named file does not exist.
  125. .TP 15
  126. [EACCES]
  127. Search permission is denied for a component of the path prefix.
  128. .TP 15
  129. [ELOOP]
  130. Too many symbolic links were encountered in translating the pathname.
  131. .TP 15
  132. [EPERM]
  133. The effective user ID does not match the owner of the file and
  134. the effective user ID is not the super-user.
  135. .TP 15
  136. [EROFS]
  137. The named file resides on a read-only file system.
  138. .TP 15
  139. [EFAULT]
  140. .I Path
  141. points outside the process's allocated address space.
  142. .TP 15
  143. [EIO]
  144. An I/O error occurred while reading from or writing to the file system.
  145. .PP
  146. .I Fchmod
  147. will fail if:
  148. .TP 15
  149. [EBADF]
  150. The descriptor is not valid.
  151. .TP 15
  152. [EINVAL]
  153. .I Fd
  154. refers to a socket, not to a file.
  155. .TP 15
  156. [EROFS]
  157. The file resides on a read-only file system.
  158. .TP 15
  159. [EIO]
  160. An I/O error occurred while reading from or writing to the file system.
  161. .SH "SEE ALSO"
  162. chmod(1), open(2), chown(2), stat(2), sticky(8)
  163. @
  164.  
  165.  
  166. 1.2
  167. log
  168. @Made the man page more accurate.
  169. @
  170. text
  171. @d10 1
  172. a10 1
  173. chmod \- change mode of file
  174. @
  175.  
  176.  
  177. 1.1
  178. log
  179. @Initial revision
  180. @
  181. text
  182. @d33 1
  183. a33 1
  184. .IR <sys/inode.h> :
  185. d37 7
  186. a43 7
  187. .ta \w'IWRITE\ \ 'u +\w'04000\ \ \ 'u
  188. ISUID    04000    set user ID on execution
  189. ISGID    02000    set group ID on execution
  190. ISVTX    01000    `sticky bit' (see below)
  191. IREAD    00400    read by owner
  192. IWRITE    00200    write by owner
  193. IEXEC    00100    execute (search on directory) by owner
  194. d50 1
  195. a50 1
  196. then mode ISVTX (the `sticky bit') prevents the system from
  197. d55 1
  198. a55 1
  199. If mode ISVTX (the `sticky bit') is set on a directory,
  200. @
  201.